home *** CD-ROM | disk | FTP | other *** search
- package java.security;
-
- import java.util.Enumeration;
- import sun.security.util.SecurityConstants;
-
- final class AllPermissionCollection$1 implements Enumeration {
- private boolean hasMore;
- // $FF: synthetic field
- final AllPermissionCollection this$0;
-
- AllPermissionCollection$1(AllPermissionCollection var1) {
- this.this$0 = var1;
- this.hasMore = AllPermissionCollection.access$000(this.this$0);
- }
-
- public boolean hasMoreElements() {
- return this.hasMore;
- }
-
- public Object nextElement() {
- this.hasMore = false;
- return SecurityConstants.ALL_PERMISSION;
- }
- }
-